| configure.ac (33605542) | configure.ac (cfd1b5f7) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 4583 unchanged lines hidden (view full) --- 4592 4593dnl =================================================================== 4594dnl Check for system serf 4595dnl =================================================================== 4596SYSTEM_SERF=NO 4597SERF_CFLAGS= 4598SERF_LIBS= 4599AC_MSG_CHECKING([which libserf to use]) | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 4583 unchanged lines hidden (view full) --- 4592 4593dnl =================================================================== 4594dnl Check for system serf 4595dnl =================================================================== 4596SYSTEM_SERF=NO 4597SERF_CFLAGS= 4598SERF_LIBS= 4599AC_MSG_CHECKING([which libserf to use]) |
| 4600if test "x$with_system_serf" = "xyes" -o -n "$with_system_libs"; then | 4600if test -n "$with_system_serf" -o -n "$with_system_libs" && \ 4601 test "$with_system_serf" != "no"; then |
| 4601 AC_MSG_RESULT([system]) 4602 PKG_CHECK_MODULES([SERF], [serf-1 >= 1.1]) 4603 SYSTEM_SERF=YES 4604else 4605 AC_MSG_RESULT([internal]) 4606 SYSTEM_SERF=NO 4607 BUILD_TYPE="$BUILD_TYPE SERF" 4608fi --- 3132 unchanged lines hidden --- | 4602 AC_MSG_RESULT([system]) 4603 PKG_CHECK_MODULES([SERF], [serf-1 >= 1.1]) 4604 SYSTEM_SERF=YES 4605else 4606 AC_MSG_RESULT([internal]) 4607 SYSTEM_SERF=NO 4608 BUILD_TYPE="$BUILD_TYPE SERF" 4609fi --- 3132 unchanged lines hidden --- |