]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
configure: automatically fail the check for rpath on AIX systems and provide a -...
authorstephan <stephan@noemail.net>
Thu, 20 Feb 2025 17:15:37 +0000 (17:15 +0000)
committerstephan <stephan@noemail.net>
Thu, 20 Feb 2025 17:15:37 +0000 (17:15 +0000)
FossilOrigin-Name: b6603986e621918525312130996c298135ad27af293df9bb9f99e1fc87844379

auto.def
autoconf/auto.def
autosetup/proj.tcl
autosetup/sqlite-config.tcl
manifest
manifest.uuid

index 9df87f579a35f79eb1a2c3b03fb9e2f7ed7d4105..84dfa824c26652c45e814003414952f710b49dc0 100644 (file)
--- a/auto.def
+++ b/auto.def
@@ -59,7 +59,7 @@ proj-define-for-opt linemacros AMALGAMATION_LINE_MACROS \
 
 define LINK_TOOLS_DYNAMICALLY [proj-opt-was-provided dynlink-tools]
 
-proj-check-rpath
+sqlite-handle-rpath
 sqlite-handle-soname
 sqlite-handle-debug
 sqlite-handle-tcl
index 099b52aff77714dcf37e7e0b84bdae1fcd90b3db..069f3e931f5216f65d6eb6cd3019950a054cf92a 100644 (file)
@@ -11,7 +11,7 @@ use sqlite-config
 sqlite-config-bootstrap autoconf
 sqlite-check-common-bins
 sqlite-check-common-system-deps
-proj-check-rpath
+sqlite-handle-rpath
 sqlite-handle-soname
 sqlite-setup-default-cflags
 sqlite-handle-debug
index 6a1960f6034f37307c86d3c3edcf74dd35054741..6b49dcdae0fd2998508e3a6b93547bddeb057ea7 100644 (file)
@@ -921,9 +921,20 @@ proc proj-check-emsdk {} {
 #
 # Achtung: we have seen platforms which report that a given option
 # checked here will work but then fails at build-time, and the current
-# order of checks reflects that.
+# order of checks reflects that. Similarly, platforms which are known
+# to report success here but fail to handle this flag at link-time are
+# special-cased here to behave as if the check failed.
 proc proj-check-rpath {} {
-  set rc 1
+  switch -glob -- [get-define host] {
+    *-*-aix* {
+      # Skip this check on platform(s) where we know it to pass at
+      # this step but fail at build-time, as a workaround for
+      # https://sqlite.org/forum/forumpost/ae5bd8a84b until we can
+      # find a more reliable approach.
+      define LDFLAGS_RPATH ""
+      return 0
+    }
+  }
   if {[proj-opt-was-provided libdir]
       || [proj-opt-was-provided exec-prefix]} {
     set lp "[get-define libdir]"
@@ -945,10 +956,9 @@ proc proj-check-rpath {} {
       define LDFLAGS_RPATH "-Wl,-R$lp"
     } else {
       define LDFLAGS_RPATH ""
-      set rc 0
     }
   }
-  return $rc
+  expr {"" ne [get-define LDFLAGS_RPATH]}
 }
 
 ########################################################################
index 7d9a9ea84b7aab769c52c63fc946d4024b06451c..be2522fb122e3cfc6b2aabc85839f3cee25e1831 100644 (file)
@@ -244,6 +244,9 @@ proc sqlite-config-bootstrap {buildMode} {
         static-shell=1       => {Link the sqlite3 shell app against the DLL instead of embedding sqlite3.c}
       }
       {*} {
+        # rpath: https://sqlite.org/forum/forumpost/fa3a6ed858
+        rpath=1
+          => {Disable checking for rpath support}
         # soname: https://sqlite.org/src/forumpost/5a3b44f510df8ded
         soname:=legacy
           => {SONAME for libsqlite3.so. "none", or not using this flag, sets no
@@ -644,6 +647,17 @@ proc sqlite-handle-debug {} {
   }
 }
 
+########################################################################
+# If the --disable-rpath flag is used, this [define]s LDFLAGS_RPATH to
+# an empty string, else it invokes [proj-check-rpath].
+proc sqlite-handle-rpath {} {
+  proj-if-opt-truthy rpath {
+    proj-check-rpath
+  } {
+    define LDFLAGS_RPATH ""
+  }
+}
+
 ########################################################################
 # "soname" for libsqlite3.so. See discussion at:
 # https://sqlite.org/src/forumpost/5a3b44f510df8ded
index 676a06d6d77d6ec5120ff4ba75d82a3b2ce1dcca..f81431011e4b3b9afa15d9886154083f2803c33e 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sautoconf\sbundle\sto\shonor\sthe\s--disable-static\sand\s--disable-shared\sflags,\sas\sreported\sin\s[forum:ae5bd8a84b|forum\spost\sae5bd8a84b].\sProblem\sintroduced\sin\s3.49.0.
-D 2025-02-20T16:47:12.245
+C configure:\sautomatically\sfail\sthe\scheck\sfor\srpath\son\sAIX\ssystems\sand\sprovide\sa\s--disable-rpath\sflag\sas\sa\sfallback\sfor\suse\son\splatforms\swhich\spass\sthe\sconfigure-time\srpath\scheck\sbut\sthen\sfail\sat\slink-time.\sBased\son\sdiscussion\sin\s[forum:ae5bd8a84b|forum\sthread\sae5bd8a84b].
+D 2025-02-20T17:15:37.207
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md e108e1e69ae8e8a59e93c455654b8ac9356a11720d3345df2a4743e9590fb20d
@@ -14,13 +14,13 @@ F art/sqlite370.eps aa97a671332b432a54e1d74ff5e8775be34200c2
 F art/sqlite370.ico af56c1d00fee7cd4753e8631ed60703ed0fc6e90
 F art/sqlite370.jpg d512473dae7e378a67e28ff96a34da7cb331def2
 F art/sqlite370.svg 40b7e2fe8aac3add5d56dd86ab8d427a4eca5bcb3fe4f8946cb3794e1821d531
-F auto.def eddf6aef976e2c1a56c0accc3244945e0b22ec6799074c40be160e5a9a5662b0
+F auto.def 9e4315ae57d558c033a7bfb1f3ba0e9e0117147516b8c78c06276663b83b8cad
 F autoconf/Makefile.fallback 22fe523eb36dfce31e0f6349f782eb084e86a5620b2b0b4f84a2d6133f53f5ac
 F autoconf/Makefile.in ed042ba44540e67e17b1e7bd787e8118a9d14664ba8049966ec9bc54a10676ce
 F autoconf/Makefile.msc 0a071367537dc395285a5d624ac4f99f3a387b27cc5e89752423c0499e15aec4
 F autoconf/README.first f1d3876e9a7852c22f275a6f06814e64934cecbc0b5b9617d64849094c1fd136
 F autoconf/README.txt 7f01dc3915e2d68f329011073662369e62a0938a2c69398807823c57591cb288
-F autoconf/auto.def 3a318c4898024b35ed61a4876a42e3dcc313f93bd8486874d1ad498b88643d1a
+F autoconf/auto.def 64c1a116162da18783a5467b49e539538f7013ea50ae192f182987b5c2f66f9e
 F autoconf/tea/Makefile.in ba0556fee8da09c066bad85a4457904e46ee2c2eabaa309c0e83a78f2f151a8e
 F autoconf/tea/README.txt 61e62e519579e4a112791354d6d440f8b51ea6db3b0bab58d59f29df42d2dfe3
 F autoconf/tea/aclocal.m4 52c47aac44ce0ddb1f918b6993e8beb8eee88f43
@@ -49,8 +49,8 @@ F autosetup/cc-shared.tcl 4f024e94a47f427ba61de1739f6381ef0080210f9fae89112d5c1d
 F autosetup/cc.tcl c0fcc50ca91deff8741e449ddad05bcd08268bc31177e613a6343bbd1fd3e45f
 F autosetup/jimsh0.c 6573f6bc6ff204de0139692648d7037ca0b6c067bac83a7b4e087f20a86866a4
 F autosetup/pkg-config.tcl 4e635bf39022ff65e0d5434339dd41503ea48fc53822c9c5bde88b02d3d952ba
-F autosetup/proj.tcl 42119a2e899e319b92f3159952b7ef7219c82cb45eeb636aaf8d909def8150f8
-F autosetup/sqlite-config.tcl e1d65cc632e1de94ff39618ac82b649f2062f674ca36dae78ab3573cab096761
+F autosetup/proj.tcl aca615a2e01fc57ab1292a9e55abbe9854fbd9e188cf25c119f00292455c4c7e
+F autosetup/sqlite-config.tcl 87732c140cce3327b709d1f7746c999149500fd28682dff384da58af68c844b0
 F autosetup/system.tcl 51d4be76cd9a9074704b584e5c9cbba616202c8468cf9ba8a4f8294a7ab1dba9
 F configure 9a00b21dfd13757bbfb8d89b30660a89ec1f8f3a79402b8f9f9b6fc475c3303a x
 F contrib/sqlitecon.tcl 210a913ad63f9f991070821e599d600bd913e0ad
@@ -2209,9 +2209,9 @@ F tool/version-info.c 3b36468a90faf1bbd59c65fd0eb66522d9f941eedd364fabccd7227350
 F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee87c1b31a7
 F tool/warnings.sh 49a486c5069de041aedcbde4de178293e0463ae9918ecad7539eedf0ec77a139
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 873d4e274b4988d260ba8354a9718324a1c26187a4ab4c1cc0227c03d0f10e70
-Q +56027220cc15b69cb98ba5360ffd3718c997e10d51e30eebeff14f0dc358d103
-R d77d93c334f93baa3d3dfa693f292a65
+P e5ea86dccf0f4dccfcccb2402f4177777d86af9ebb93794a909ccad369299b68
+Q +a15e0f6802a5ba7bc5a7a70d6a162ea4548b49b132a5ac31263e64c388bbafcb
+R c84318b199b6ac3f0331582bdda34a7c
 U stephan
-Z cdb00f4981f10ad2bdaf60690340cf17
+Z affaa2bc1abdcb375fbbc40bcefd7191
 # Remove this line to create a well-formed Fossil manifest.
index 039f7ae6fc95e17b53462e4dd9818f6fd95749af..d0635a4218311f7c17439ebae1e864c45c013efc 100644 (file)
@@ -1 +1 @@
-e5ea86dccf0f4dccfcccb2402f4177777d86af9ebb93794a909ccad369299b68
+b6603986e621918525312130996c298135ad27af293df9bb9f99e1fc87844379