tuhaihe commented on PR #1153:
URL: https://github.com/apache/cloudberry/pull/1153#issuecomment-3163288871

   Hey, after pulling the rebased code, still had the same issue under my env:
   
   ```
   root@ubuntu20:~/cloudberry# cat /etc/os-release
   NAME="Ubuntu"
   VERSION="20.04.6 LTS (Focal Fossa)"
   ID=ubuntu
   ID_LIKE=debian
   PRETTY_NAME="Ubuntu 20.04.6 LTS"
   VERSION_ID="20.04"
   HOME_URL="https://www.ubuntu.com/";
   SUPPORT_URL="https://help.ubuntu.com/";
   BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/";
   
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy";
   VERSION_CODENAME=focal
   UBUNTU_CODENAME=focal
   root@ubuntu20:~/cloudberry# autoreconf -i
   root@ubuntu20:~/cloudberry# git status
   On branch yjhjstz/fix-autoconf
   Changes not staged for commit:
     (use "git add <file>..." to update what will be committed)
     (use "git restore <file>..." to discard changes in working directory)
        modified:   src/include/pg_config.h.in
   
   Untracked files:
     (use "git add <file>..." to include in what will be committed)
        src/include/pg_config.h.in~
   
   no changes added to commit (use "git add" and/or "git commit -a")
   ```
   
   
   ```
   root@ubuntu20:~/cloudberry# git diff src/include/pg_config.h.in
   diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in
   index bf5feeef781..a5393e85076 100644
   --- a/src/include/pg_config.h.in
   +++ b/src/include/pg_config.h.in
   @@ -1028,6 +1028,10 @@
       (--with-libxslt) */
    #undef USE_LIBXSLT
   
   +/* Define to 1 to build Cloudberry using the shared library libpostgres.so
   +   (--enable-link-postgres-with-shared) */
   +#undef USE_LINK_POSTGRES_WITH_SHARED
   +
    /* Define to 1 to build with LLVM based JIT support. (--with-llvm) */
    #undef USE_LLVM
   
   @@ -1052,7 +1056,7 @@
    /* Define to 1 to support PAX */
    #undef USE_PAX_STORAGE
   
   -/* Define to 1 to build with shared postgres backend capabilities
   +/* Define to 1 to build with shared Cloudberry backend capabilities
       (--enable-shared-postgres-backend) */
    #undef USE_SHARED_POSTGRES_BACKEND
   ```
   
   It seems the new change introduced the new configure option 
`--enable-link-postgres-with-shared`. After `git add` the new change, and rm 
the backup file. Run the cmd again, ok now.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to