Browse Source

*** empty log message ***

pre-master-46
saintel 18 years ago
parent
commit
c2bb21e261
  1. 4
      ChangeLog
  2. 5
      src/Makefile.am

4
ChangeLog

@ -1,6 +1,6 @@
2008-09-15 Lionel Sainte Cluque
* src/Makefile.am: Add $(DESTDIR) in tclspice installation, required by
debian package.
* src/Makefile.am: Add $(DESTDIR) in tclspice installation, required by debian package.
* src/Makefile.am: Use -no-undefined only for windows build (libspice_la_LDFLAGS)
2008-09-13 Holger Vogt
* configure.in: add AC_LIBTOOL_WIN32_DLL

5
src/Makefile.am

@ -267,7 +267,10 @@ libspice_la_LIBADD = ngspice.lo conf.lo \
misc/libmisc.la \
tclspice.lo $(LIBS)
libspice_la_CFLAGS = $(AM_CFLAGS)
libspice_la_LDFLAGS = -shared -Wl,--version-script=tclspice.map -no-undefined
libspice_la_LDFLAGS = -shared -Wl,--version-script=tclspice.map
if WINDOWS
libspice_la_LDFLAGS += -no-undefined
endif
CLEANFILES = pkgIndex.tcl libspice.so

Loading…
Cancel
Save