Changeset 1770
- Timestamp:
- 18/11/11 09:56:23 (6 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
bindings/python/nxs/napi.py (modified) (2 diffs)
-
configure.ac (modified) (1 diff)
-
third_party/tclap/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/python/nxs/napi.py
r1706 r1770 26 26 27 27 - On Windows it looks for one of libNeXus.dll or libNeXus-0.dll. 28 - On OS X it looks for libNeXus. dylib29 - On Unix it looks for libNeXus.so 28 - On OS X it looks for libNeXus.0.dylib 29 - On Unix it looks for libNeXus.so.0 30 30 - NEXUSDIR defaults to 'C:\\Program Files\\NeXus Data Format'. 31 31 - PREFIX defaults to /usr/local, but is replaced by the value of --prefix during configure. … … 235 235 winnxdir = 'C:/Program Files/NeXus Data Format' 236 236 237 files += [filedir+"/libNeXus .dll",238 filedir+"/libNeXus-0.dll",239 winnxdir + '/bin/libNeXus-0.dll']237 files += [filedir+"/libNeXus-0.dll", 238 winnxdir + '/bin/libNeXus-0.dll', 239 filedir+"/libNeXus.dll"] 240 240 else: 241 241 if sys.platform in ('darwin'): 242 lib = 'libNeXus. dylib'242 lib = 'libNeXus.0.dylib' 243 243 ldenv = 'DYLD_LIBRARY_PATH' 244 244 else: 245 lib = 'libNeXus.so '245 lib = 'libNeXus.so.0' 246 246 ldenv = 'LD_LIBRARY_PATH' 247 247 # Search the load library path as well as the standard locations -
trunk/configure.ac
r1759 r1770 669 669 AC_CHECK_LIB(termcap, tputs) 670 670 AC_CHECK_LIB(readline, readline) 671 AC_CHECK_LIB(history, add_history)671 #AC_CHECK_LIB(history, add_history) 672 672 if test x$ac_cv_lib_termcap_tputs = xyes; then READLINE_LDFLAGS="-ltermcap $READLINE_LDFLAGS"; fi 673 #if test x$ac_cv_lib_history_add_history = xyes; then READLINE_LDFLAGS="-lhistory $READLINE_LDFLAGS"; fi 673 674 if test x$ac_cv_lib_readline_readline = xyes; then READLINE_LDFLAGS="-lreadline $READLINE_LDFLAGS"; fi 674 if test x$ac_cv_lib_history_add_history = xyes; then READLINE_LDFLAGS="-lhistory $READLINE_LDFLAGS"; fi675 675 AC_SUBST(READLINE_LDFLAGS) 676 676 LIBS="$SAVE_LIBS" -
trunk/third_party/tclap/Makefile.am
r1515 r1770 1 1 2 libtclapincludedir = $(includedir)/tclap2 #libtclapincludedir = $(includedir)/tclap 3 3 4 libtclapinclude_HEADERS = \4 noinst_HEADERS = \ 5 5 CmdLineInterface.h \ 6 6 ArgException.h \
Note: See TracChangeset
for help on using the changeset viewer.
