diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 00:16:16 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-02 00:16:16 +0000 |
commit | bfa24b961a7095fe532125dcbfc123dbb3988240 (patch) | |
tree | 51d09fcbc1568deac2f2933027aa1dbaa920ce87 /third_party/libevent | |
parent | 4c99a9f02c090254bc4ef8bca512428d24e28bd5 (diff) | |
download | chromium_src-bfa24b961a7095fe532125dcbfc123dbb3988240.zip chromium_src-bfa24b961a7095fe532125dcbfc123dbb3988240.tar.gz chromium_src-bfa24b961a7095fe532125dcbfc123dbb3988240.tar.bz2 |
GYP it, GYP it good.
Convert the Mac build to the new GYP-based Xcode build, and remove the old
Xcode projects.
Review URL: http://codereview.chromium.org/28305
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10693 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libevent')
-rw-r--r-- | third_party/libevent/README.chromium | 4 | ||||
-rwxr-xr-x | third_party/libevent/libevent.xcodeproj/libevent_prebuild.sh | 91 | ||||
-rw-r--r-- | third_party/libevent/libevent.xcodeproj/project.pbxproj | 272 |
3 files changed, 1 insertions, 366 deletions
diff --git a/third_party/libevent/README.chromium b/third_party/libevent/README.chromium index b74087c..ddb34a4 100644 --- a/third_party/libevent/README.chromium +++ b/third_party/libevent/README.chromium @@ -5,7 +5,7 @@ static library using SConscript Changes from upstream: 1) add linux/config.h from a run of configure on a Linux development box. -2) add SConscript and libevent.xcodeproj +2) add SConscript and libevent.gyp 3) quotes.patch is applied to allow libevent to be used without being installed (alternative is adding crazy -I arguments to the commandline) 4) The directories WIN32-Code and WIN32-Prj are not included @@ -13,8 +13,6 @@ being installed (alternative is adding crazy -I arguments to the commandline) SConscript does not include a few files that don't build on Linux: devpoll.c, evport.c, kqueue.c -libevent.xcodeproj does not include a few files that don't build on the Mac: - devpoll.c, epoll.c, epoll_sub.c, evport.c TODO: currently we -I the source directory, which exposes event-config.h, which is dangerous as this file was generated for Linux and is not entirely correct on diff --git a/third_party/libevent/libevent.xcodeproj/libevent_prebuild.sh b/third_party/libevent/libevent.xcodeproj/libevent_prebuild.sh deleted file mode 100755 index 6e6c48c..0000000 --- a/third_party/libevent/libevent.xcodeproj/libevent_prebuild.sh +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2008 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -set -ex - -GENERATED_DIR="${CONFIGURATION_TEMP_DIR}/generated" - -# Generate config.h the same way that "sh configure" would -mkdir -p "${GENERATED_DIR}" - -CONFIG_H_IN="$1" -if test "X${CONFIG_H_IN}" = "X"; then - CONFIG_H_IN="config.h.in" -fi - -CONFIG_H="${GENERATED_DIR}/config.h" -sed -e s/'^#undef DNS_USE_GETTIMEOFDAY_FOR_ID$'/'#define DNS_USE_GETTIMEOFDAY_FOR_ID 1'/ \ - -e s/'^#undef HAVE_DLFCN_H$'/'#define HAVE_DLFCN_H 1'/ \ - -e s/'^#undef HAVE_FCNTL$'/'#define HAVE_FCNTL 1'/ \ - -e s/'^#undef HAVE_FCNTL_H$'/'#define HAVE_FCNTL_H 1'/ \ - -e s/'^#undef HAVE_GETADDRINFO$'/'#define HAVE_GETADDRINFO 1'/ \ - -e s/'^#undef HAVE_GETNAMEINFO$'/'#define HAVE_GETNAMEINFO 1'/ \ - -e s/'^#undef HAVE_GETTIMEOFDAY$'/'#define HAVE_GETTIMEOFDAY 1'/ \ - -e s/'^#undef HAVE_INET_NTOP$'/'#define HAVE_INET_NTOP 1'/ \ - -e s/'^#undef HAVE_INTTYPES_H$'/'#define HAVE_INTTYPES_H 1'/ \ - -e s/'^#undef HAVE_KQUEUE$'/'#define HAVE_KQUEUE 1'/ \ - -e s/'^#undef HAVE_LIBRESOLV$'/'#define HAVE_LIBRESOLV 1'/ \ - -e s/'^#undef HAVE_MEMORY_H$'/'#define HAVE_MEMORY_H 1'/ \ - -e s/'^#undef HAVE_POLL$'/'#define HAVE_POLL 1'/ \ - -e s/'^#undef HAVE_POLL_H$'/'#define HAVE_POLL_H 1'/ \ - -e s/'^#undef HAVE_SELECT$'/'#define HAVE_SELECT 1'/ \ - -e s/'^#undef HAVE_SETFD$'/'#define HAVE_SETFD 1'/ \ - -e s/'^#undef HAVE_SIGACTION$'/'#define HAVE_SIGACTION 1'/ \ - -e s/'^#undef HAVE_SIGNAL$'/'#define HAVE_SIGNAL 1'/ \ - -e s/'^#undef HAVE_SIGNAL_H$'/'#define HAVE_SIGNAL_H 1'/ \ - -e s/'^#undef HAVE_STDARG_H$'/'#define HAVE_STDARG_H 1'/ \ - -e s/'^#undef HAVE_STDINT_H$'/'#define HAVE_STDINT_H 1'/ \ - -e s/'^#undef HAVE_STDLIB_H$'/'#define HAVE_STDLIB_H 1'/ \ - -e s/'^#undef HAVE_STRINGS_H$'/'#define HAVE_STRINGS_H 1'/ \ - -e s/'^#undef HAVE_STRING_H$'/'#define HAVE_STRING_H 1'/ \ - -e s/'^#undef HAVE_STRLCPY$'/'#define HAVE_STRLCPY 1'/ \ - -e s/'^#undef HAVE_STRSEP$'/'#define HAVE_STRSEP 1'/ \ - -e s/'^#undef HAVE_STRTOK_R$'/'#define HAVE_STRTOK_R 1'/ \ - -e s/'^#undef HAVE_STRTOLL$'/'#define HAVE_STRTOLL 1'/ \ - -e s/'^#undef HAVE_STRUCT_IN6_ADDR$'/'#define HAVE_STRUCT_IN6_ADDR 1'/ \ - -e s/'^#undef HAVE_SYS_EVENT_H$'/'#define HAVE_SYS_EVENT_H 1'/ \ - -e s/'^#undef HAVE_SYS_IOCTL_H$'/'#define HAVE_SYS_IOCTL_H 1'/ \ - -e s/'^#undef HAVE_SYS_PARAM_H$'/'#define HAVE_SYS_PARAM_H 1'/ \ - -e s/'^#undef HAVE_SYS_QUEUE_H$'/'#define HAVE_SYS_QUEUE_H 1'/ \ - -e s/'^#undef HAVE_SYS_SELECT_H$'/'#define HAVE_SYS_SELECT_H 1'/ \ - -e s/'^#undef HAVE_SYS_SOCKET_H$'/'#define HAVE_SYS_SOCKET_H 1'/ \ - -e s/'^#undef HAVE_SYS_STAT_H$'/'#define HAVE_SYS_STAT_H 1'/ \ - -e s/'^#undef HAVE_SYS_TIME_H$'/'#define HAVE_SYS_TIME_H 1'/ \ - -e s/'^#undef HAVE_SYS_TYPES_H$'/'#define HAVE_SYS_TYPES_H 1'/ \ - -e s/'^#undef HAVE_TAILQFOREACH$'/'#define HAVE_TAILQFOREACH 1'/ \ - -e s/'^#undef HAVE_TIMERADD$'/'#define HAVE_TIMERADD 1'/ \ - -e s/'^#undef HAVE_TIMERCLEAR$'/'#define HAVE_TIMERCLEAR 1'/ \ - -e s/'^#undef HAVE_TIMERCMP$'/'#define HAVE_TIMERCMP 1'/ \ - -e s/'^#undef HAVE_TIMERISSET$'/'#define HAVE_TIMERISSET 1'/ \ - -e s/'^#undef HAVE_UINT16_T$'/'#define HAVE_UINT16_T 1'/ \ - -e s/'^#undef HAVE_UINT32_T$'/'#define HAVE_UINT32_T 1'/ \ - -e s/'^#undef HAVE_UINT64_T$'/'#define HAVE_UINT64_T 1'/ \ - -e s/'^#undef HAVE_UINT8_T$'/'#define HAVE_UINT8_T 1'/ \ - -e s/'^#undef HAVE_UNISTD_H$'/'#define HAVE_UNISTD_H 1'/ \ - -e s/'^#undef HAVE_VASPRINTF$'/'#define HAVE_VASPRINTF 1'/ \ - -e s/'^#undef HAVE_WORKING_KQUEUE$'/'#define HAVE_WORKING_KQUEUE 1'/ \ - -e s/'^#undef PACKAGE$'/'#define PACKAGE "libevent"'/ \ - -e s/'^#undef PACKAGE_BUGREPORT$'/'#define PACKAGE_BUGREPORT ""'/ \ - -e s/'^#undef PACKAGE_NAME$'/'#define PACKAGE_NAME ""'/ \ - -e s/'^#undef PACKAGE_STRING$'/'#define PACKAGE_STRING ""'/ \ - -e s/'^#undef PACKAGE_TARNAME$'/'#define PACKAGE_TARNAME ""'/ \ - -e s/'^#undef PACKAGE_VERSION$'/'#define PACKAGE_VERSION ""'/ \ - -e s/'^#undef SIZEOF_INT$'/'#define SIZEOF_INT 4'/ \ - -e s/'^#undef SIZEOF_LONG$'/'#define SIZEOF_LONG 4'/ \ - -e s/'^#undef SIZEOF_LONG_LONG$'/'#define SIZEOF_LONG_LONG 8'/ \ - -e s/'^#undef SIZEOF_SHORT$'/'#define SIZEOF_SHORT 2'/ \ - -e s/'^#undef STDC_HEADERS$'/'#define STDC_HEADERS 1'/ \ - -e s/'^#undef TIME_WITH_SYS_TIME$'/'#define TIME_WITH_SYS_TIME 1'/ \ - -e s/'^#undef VERSION$'/'#define VERSION "1.4.7-stable"'/ \ - -e s@'^\(#undef .*\)$'@'/* \1 */'@ \ - < "${CONFIG_H_IN}" \ - > "${CONFIG_H}.new" - -if ! diff -q "${CONFIG_H}.new" "${CONFIG_H}" >& /dev/null ; then - mv "${CONFIG_H}.new" "${CONFIG_H}" -else - rm "${CONFIG_H}.new" -fi diff --git a/third_party/libevent/libevent.xcodeproj/project.pbxproj b/third_party/libevent/libevent.xcodeproj/project.pbxproj deleted file mode 100644 index 77f3b0f..0000000 --- a/third_party/libevent/libevent.xcodeproj/project.pbxproj +++ /dev/null @@ -1,272 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 45; - objects = { - -/* Begin PBXBuildFile section */ - 7B262E890E82E609001CE27F /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E600E82E5C5001CE27F /* buffer.c */; }; - 7B262E8E0E82E609001CE27F /* evbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E650E82E5C5001CE27F /* evbuffer.c */; }; - 7B262E930E82E609001CE27F /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E6A0E82E5C5001CE27F /* event.c */; }; - 7B262E950E82E609001CE27F /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E6C0E82E5C5001CE27F /* event_tagging.c */; }; - 7B262E990E82E609001CE27F /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E700E82E5C5001CE27F /* evrpc.c */; }; - 7B262E9C0E82E609001CE27F /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E730E82E5C5001CE27F /* evutil.c */; }; - 7B262E9F0E82E609001CE27F /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E760E82E5C5001CE27F /* http.c */; }; - 7B262EA10E82E609001CE27F /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E780E82E5C5001CE27F /* log.c */; }; - 7B262EA40E82E609001CE27F /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E7B0E82E5C5001CE27F /* poll.c */; }; - 7B262EA50E82E609001CE27F /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E7C0E82E5C5001CE27F /* select.c */; }; - 7B262EA60E82E609001CE27F /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E7D0E82E5C5001CE27F /* signal.c */; }; - 7B262EA80E82E609001CE27F /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E7F0E82E5C5001CE27F /* strlcpy.c */; }; - 7B262F290E82EE28001CE27F /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E770E82E5C5001CE27F /* kqueue.c */; }; - 7B262F6B0E82F11C001CE27F /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B262E660E82E5C5001CE27F /* evdns.c */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 7B262E540E82E582001CE27F /* common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; }; - 7B262E550E82E582001CE27F /* debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = "<group>"; }; - 7B262E560E82E582001CE27F /* executable.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = executable.xcconfig; sourceTree = "<group>"; }; - 7B262E570E82E582001CE27F /* release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = "<group>"; }; - 7B262E580E82E582001CE27F /* staticlib.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = staticlib.xcconfig; sourceTree = "<group>"; }; - 7B262E600E82E5C5001CE27F /* buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buffer.c; sourceTree = "<group>"; }; - 7B262E650E82E5C5001CE27F /* evbuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evbuffer.c; sourceTree = "<group>"; }; - 7B262E660E82E5C5001CE27F /* evdns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evdns.c; sourceTree = "<group>"; }; - 7B262E6A0E82E5C5001CE27F /* event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = event.c; sourceTree = "<group>"; }; - 7B262E6C0E82E5C5001CE27F /* event_tagging.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = event_tagging.c; sourceTree = "<group>"; }; - 7B262E700E82E5C5001CE27F /* evrpc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evrpc.c; sourceTree = "<group>"; }; - 7B262E730E82E5C5001CE27F /* evutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evutil.c; sourceTree = "<group>"; }; - 7B262E760E82E5C5001CE27F /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http.c; sourceTree = "<group>"; }; - 7B262E770E82E5C5001CE27F /* kqueue.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = kqueue.c; sourceTree = "<group>"; }; - 7B262E780E82E5C5001CE27F /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = log.c; sourceTree = "<group>"; }; - 7B262E7B0E82E5C5001CE27F /* poll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poll.c; sourceTree = "<group>"; }; - 7B262E7C0E82E5C5001CE27F /* select.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = select.c; sourceTree = "<group>"; }; - 7B262E7D0E82E5C5001CE27F /* signal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = signal.c; sourceTree = "<group>"; }; - 7B262E7F0E82E5C5001CE27F /* strlcpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlcpy.c; sourceTree = "<group>"; }; - 7B262E840E82E5D7001CE27F /* libevent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 7B262E820E82E5D7001CE27F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 7B262E400E82E538001CE27F = { - isa = PBXGroup; - children = ( - 7B262E530E82E557001CE27F /* Configuration */, - 7B262E590E82E58A001CE27F /* Source */, - 7B262E850E82E5D7001CE27F /* Products */, - ); - sourceTree = "<group>"; - }; - 7B262E530E82E557001CE27F /* Configuration */ = { - isa = PBXGroup; - children = ( - 7B262E540E82E582001CE27F /* common.xcconfig */, - 7B262E550E82E582001CE27F /* debug.xcconfig */, - 7B262E560E82E582001CE27F /* executable.xcconfig */, - 7B262E570E82E582001CE27F /* release.xcconfig */, - 7B262E580E82E582001CE27F /* staticlib.xcconfig */, - ); - name = Configuration; - path = ../../build; - sourceTree = "<group>"; - }; - 7B262E590E82E58A001CE27F /* Source */ = { - isa = PBXGroup; - children = ( - 7B262E600E82E5C5001CE27F /* buffer.c */, - 7B262E650E82E5C5001CE27F /* evbuffer.c */, - 7B262E660E82E5C5001CE27F /* evdns.c */, - 7B262E6A0E82E5C5001CE27F /* event.c */, - 7B262E6C0E82E5C5001CE27F /* event_tagging.c */, - 7B262E700E82E5C5001CE27F /* evrpc.c */, - 7B262E730E82E5C5001CE27F /* evutil.c */, - 7B262E760E82E5C5001CE27F /* http.c */, - 7B262E770E82E5C5001CE27F /* kqueue.c */, - 7B262E780E82E5C5001CE27F /* log.c */, - 7B262E7B0E82E5C5001CE27F /* poll.c */, - 7B262E7C0E82E5C5001CE27F /* select.c */, - 7B262E7D0E82E5C5001CE27F /* signal.c */, - 7B262E7F0E82E5C5001CE27F /* strlcpy.c */, - ); - name = Source; - sourceTree = "<group>"; - }; - 7B262E850E82E5D7001CE27F /* Products */ = { - isa = PBXGroup; - children = ( - 7B262E840E82E5D7001CE27F /* libevent.a */, - ); - name = Products; - sourceTree = "<group>"; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 7B262E830E82E5D7001CE27F /* libevent */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7B262E880E82E5D7001CE27F /* Build configuration list for PBXNativeTarget "libevent" */; - buildPhases = ( - 7B262EB10E82E6FD001CE27F /* Pre-Build */, - 7B262E810E82E5D7001CE27F /* Sources */, - 7B262E820E82E5D7001CE27F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = libevent; - productName = libevent; - productReference = 7B262E840E82E5D7001CE27F /* libevent.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 7B262E420E82E538001CE27F /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 7B262E450E82E538001CE27F /* Build configuration list for PBXProject "libevent" */; - compatibilityVersion = "Xcode 3.1"; - hasScannedForEncodings = 0; - mainGroup = 7B262E400E82E538001CE27F; - productRefGroup = 7B262E850E82E5D7001CE27F /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 7B262E830E82E5D7001CE27F /* libevent */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXShellScriptBuildPhase section */ - 7B262EB10E82E6FD001CE27F /* Pre-Build */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/config.h.in", - ); - name = "Pre-Build"; - outputPaths = ( - "$(CONFIGURATION_TEMP_DIR)/generated/config.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "set -ex\nexec \"${PROJECT_FILE_PATH}/${PRODUCT_NAME}_prebuild.sh\" \"${@}\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 7B262E810E82E5D7001CE27F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7B262E890E82E609001CE27F /* buffer.c in Sources */, - 7B262E8E0E82E609001CE27F /* evbuffer.c in Sources */, - 7B262F6B0E82F11C001CE27F /* evdns.c in Sources */, - 7B262E930E82E609001CE27F /* event.c in Sources */, - 7B262E950E82E609001CE27F /* event_tagging.c in Sources */, - 7B262E990E82E609001CE27F /* evrpc.c in Sources */, - 7B262E9C0E82E609001CE27F /* evutil.c in Sources */, - 7B262E9F0E82E609001CE27F /* http.c in Sources */, - 7B262F290E82EE28001CE27F /* kqueue.c in Sources */, - 7B262EA10E82E609001CE27F /* log.c in Sources */, - 7B262EA40E82E609001CE27F /* poll.c in Sources */, - 7B262EA50E82E609001CE27F /* select.c in Sources */, - 7B262EA60E82E609001CE27F /* signal.c in Sources */, - 7B262EA80E82E609001CE27F /* strlcpy.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 7B262E430E82E538001CE27F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B262E550E82E582001CE27F /* debug.xcconfig */; - buildSettings = { - XCODEPROJ_DEPTH = ../..; - }; - name = Debug; - }; - 7B262E440E82E538001CE27F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B262E570E82E582001CE27F /* release.xcconfig */; - buildSettings = { - XCODEPROJ_DEPTH = ../..; - }; - name = Release; - }; - 7B262E860E82E5D7001CE27F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B262E580E82E582001CE27F /* staticlib.xcconfig */; - buildSettings = { - EXECUTABLE_PREFIX = ""; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(GCC_PREPROCESSOR_DEFINITIONS)", - HAVE_CONFIG_H, - ); - HEADER_SEARCH_PATHS = ( - "$(HEADER_SEARCH_PATHS)", - "$(CONFIGURATION_TEMP_DIR)/generated", - "$(SRCROOT)", - "$(SRCROOT)/compat", - ); - PRODUCT_NAME = libevent; - }; - name = Debug; - }; - 7B262E870E82E5D7001CE27F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B262E580E82E582001CE27F /* staticlib.xcconfig */; - buildSettings = { - EXECUTABLE_PREFIX = ""; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(GCC_PREPROCESSOR_DEFINITIONS)", - HAVE_CONFIG_H, - ); - HEADER_SEARCH_PATHS = ( - "$(HEADER_SEARCH_PATHS)", - "$(CONFIGURATION_TEMP_DIR)/generated", - "$(SRCROOT)", - "$(SRCROOT)/compat", - ); - PRODUCT_NAME = libevent; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 7B262E450E82E538001CE27F /* Build configuration list for PBXProject "libevent" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7B262E430E82E538001CE27F /* Debug */, - 7B262E440E82E538001CE27F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7B262E880E82E5D7001CE27F /* Build configuration list for PBXNativeTarget "libevent" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7B262E860E82E5D7001CE27F /* Debug */, - 7B262E870E82E5D7001CE27F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 7B262E420E82E538001CE27F /* Project object */; -} |