root/trunk/base/src/sqlite-3.1.3.diff
| Revision 43216, 2.3 KB (checked in by blb@…, 5 weeks ago) |
|---|
-
src/sqlite-3.1.3
diff -ru src/sqlite-3.1.3/Makefile.in src/sqlite-3.1.3.mine/Makefile.in
old new 605 605 mkdir -p doc 606 606 mv $(DOC) doc 607 607 608 install: sqlite3 libsqlite3.la sqlite3.h ${HAVE_TCL:1=tcl_install}608 dont_install: sqlite3 libsqlite3.la sqlite3.h ${HAVE_TCL:1=tcl_install} 609 609 $(INSTALL) -d $(DESTDIR)$(libdir) 610 610 $(LTINSTALL) libsqlite3.la $(DESTDIR)$(libdir) 611 611 $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin … … 615 615 $(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig; 616 616 $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(libdir)/pkgconfig; 617 617 618 tcl_install: libtclsqlite3.la618 install: libtclsqlite3.la 619 619 tclsh $(TOP)/tclinstaller.tcl $(VERSION) 620 620 621 621 clean: -
src/sqlite-3.1.3
diff -ru src/sqlite-3.1.3/configure src/sqlite-3.1.3.mine/configure
old new 20343 20343 ######### 20344 20344 # Generate the output files. 20345 20345 # 20346 ac_config_files="$ac_config_files Makefile sqlite3.pc "20346 ac_config_files="$ac_config_files Makefile sqlite3.pc tclinstaller.tcl" 20347 20347 cat >confcache <<\_ACEOF 20348 20348 # This file is a shell script that caches the results of configure 20349 20349 # tests run on this system so they can be shared between configure -
tclinstaller.tcl
diff -ru src/sqlite-3.1.3/tclinstaller.tcl src/sqlite-3.1.3.mine/tclinstaller.tcl
old new 7 7 set VERSION [lindex $argv 0] 8 8 set LIBFILE .libs/libtclsqlite3[info sharedlibextension] 9 9 if { ![info exists env(DESTDIR)] } { set env(DESTDIR) "" } 10 set LIBDIR $env(DESTDIR) [lindex $auto_path 0]10 set LIBDIR $env(DESTDIR)@prefix@/share/macports/Tcl 11 11 set LIBNAME [file tail $LIBFILE] 12 12 set LIB $LIBDIR/sqlite3/$LIBNAME 13 13 14 14 file delete -force $LIBDIR/sqlite3 15 15 file mkdir $LIBDIR/sqlite3 16 16 set fd [open $LIBDIR/sqlite3/pkgIndex.tcl w] 17 puts $fd "package ifneeded sqlite3 $VERSION \[list load $LIB sqlite3\]"17 puts $fd "package ifneeded sqlite3 $VERSION \[list load \[file join \$dir libtclsqlite3.dylib\]\]" 18 18 close $fd 19 19 20 20 # We cannot use [file copy] because that will just make a copy of
Note: See TracBrowser
for help on using the browser.

