adium 5954:f373ce30b5f7: I have no idea what's up with this file...
commits at adium.im
commits at adium.im
Tue Mar 21 19:53:36 UTC 2017
details: http://hg.adium.im/adium/rev/f373ce30b5f7
revision: 5954:f373ce30b5f7
branch: adium-1.5.10.3
author: Thijs Alkemade <me at thijsalkema.de>
date: Tue Mar 21 20:51:18 2017 +0100
I have no idea what's up with this file, but it's missing in the newest build, so restoring the previous version.
Subject: adium 5955:297d0d30e457: Updated xcodeproj files to work with 7.2.
details: http://hg.adium.im/adium/rev/297d0d30e457
revision: 5955:297d0d30e457
branch: adium-1.5.10.3
author: Thijs Alkemade <me at thijsalkema.de>
date: Tue Mar 21 20:53:24 2017 +0100
Updated xcodeproj files to work with 7.2.
diffs (153 lines):
diff -r b018d89d49dc -r 297d0d30e457 Adium.xcodeproj/project.pbxproj
--- a/Adium.xcodeproj/project.pbxproj Tue Mar 21 20:37:34 2017 +0100
+++ b/Adium.xcodeproj/project.pbxproj Tue Mar 21 20:53:24 2017 +0100
@@ -6413,22 +6413,14 @@
34E6BBE50A78083A0076D7F0 /* Resources */ = {
isa = PBXGroup;
children = (
- 34D8326107CBD598006466F2 /* AccountPrefs.plist */,
317D83670E89F40500298BDB /* msg-bookmark-chat.tiff */,
- 34D8327507CBD5B3006466F2 /* BuiltInStatusStates.plist */,
- 34D8326607CBD598006466F2 /* ContactPrefs.plist */,
- 34D8326707CBD598006466F2 /* default-icon.png */,
- 34D8326207CBD598006466F2 /* DockPrefs.plist */,
3428B33E0815E1FB00C0D3DC /* emoticon32.tiff */,
345F590608199746001F733C /* emoticon32_transparent.tiff */,
- 34B995D9092A832700E31E91 /* FontPanelAccessoryView.nib */,
34DFF53007A62EB100B92233 /* lock-locked.tiff */,
34DFF52607A62EB000B92233 /* lock-unlocked.tiff */,
347E787507CA975900350507 /* remove.tiff */,
- 34D8326307CBD598006466F2 /* msg-send-file.tiff */,
4BB2EB200D88D76100CA7A7D /* timestamp32.tiff */,
4BB2EB210D88D76100CA7A7D /* timestamp32_transparent.tiff */,
- 34D8327607CBD5B3006466F2 /* ToolbarPrefs.plist */,
);
name = Resources;
sourceTree = "<group>";
@@ -9208,7 +9200,7 @@
name = "Unit tests";
productName = "Unit tests";
productReference = 312ED3CA0C7E875B00A6BDA9 /* Unit tests.octest */;
- productType = "com.apple.product-type.bundle";
+ productType = "com.apple.product-type.bundle.ocunit-test";
};
3485D67F09EB416300232CC4 /* AdiumLibpurple */ = {
isa = PBXNativeTarget;
@@ -9340,6 +9332,7 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
+ LastTestingUpgradeCheck = 0720;
LastUpgradeCheck = 0430;
};
buildConfigurationList = DADE8E3A085507450062B664 /* Build configuration list for PBXProject "Adium" */;
diff -r b018d89d49dc -r 297d0d30e457 Frameworks/AutoHyperlinks Framework/AutoHyperlinks.framework.xcodeproj/project.pbxproj
--- a/Frameworks/AutoHyperlinks Framework/AutoHyperlinks.framework.xcodeproj/project.pbxproj Tue Mar 21 20:37:34 2017 +0100
+++ b/Frameworks/AutoHyperlinks Framework/AutoHyperlinks.framework.xcodeproj/project.pbxproj Tue Mar 21 20:53:24 2017 +0100
@@ -336,7 +336,7 @@
name = UnitTests;
productName = Test;
productReference = 7EA3B0440DD1153F002A18D1 /* Test.octest */;
- productType = "com.apple.product-type.bundle";
+ productType = "com.apple.product-type.bundle.ocunit-test";
};
7EB5500F0DDC80DB000DC0D6 /* LinkDriver */ = {
isa = PBXNativeTarget;
@@ -398,6 +398,7 @@
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
+ LastTestingUpgradeCheck = 0720;
LastUpgradeCheck = 0420;
};
buildConfigurationList = DA8A8087085549EE00F24BB3 /* Build configuration list for PBXProject "AutoHyperlinks.framework" */;
diff -r b018d89d49dc -r 297d0d30e457 Frameworks/libpurple.framework/Versions/2.12.0r11b8084bcff4/Headers/config.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Frameworks/libpurple.framework/Versions/2.12.0r11b8084bcff4/Headers/config.h Tue Mar 21 20:53:24 2017 +0100
@@ -0,0 +1,86 @@
+/* Local libgadu configuration file. */
+
+#undef printf
+
+#define GG_LIBGADU_VERSION "1.12.0-rc2"
+
+/* Defined if libgadu was compiled for bigendian machine. */
+#undef GG_CONFIG_BIGENDIAN
+#ifdef WORDS_BIGENDIAN
+# define GG_CONFIG_BIGENDIAN
+#endif
+
+/* Defined if this machine has gethostbyname_r(). */
+#undef GG_CONFIG_HAVE_GETHOSTBYNAME_R
+
+/* Define to 1 if you have the `_exit' function. */
+#define HAVE__EXIT 1
+
+/* Defined if libgadu was compiled and linked with fork support. */
+#undef GG_CONFIG_HAVE_FORK
+#ifndef _WIN32
+# define GG_CONFIG_HAVE_FORK
+#endif
+
+/* Defined if libgadu was compiled and linked with pthread support. */
+/* We don't use pthreads - they may not be safe. */
+#undef GG_CONFIG_HAVE_PTHREAD
+
+/* Defined if this machine has C99-compiliant vsnprintf(). */
+#undef HAVE_C99_VSNPRINTF
+#ifndef _WIN32
+# define HAVE_C99_VSNPRINTF
+#endif
+
+/* Defined if this machine has va_copy(). */
+#define GG_CONFIG_HAVE_VA_COPY
+
+/* Defined if this machine has __va_copy(). */
+#define GG_CONFIG_HAVE___VA_COPY
+
+/* Defined if this machine supports long long. */
+#undef GG_CONFIG_HAVE_LONG_LONG
+#ifdef HAVE_LONG_LONG
+# define GG_CONFIG_HAVE_LONG_LONG
+#endif
+
+/* Defined if libgadu was compiled and linked with GnuTLS support. */
+#undef GG_CONFIG_HAVE_GNUTLS
+#ifdef HAVE_GNUTLS
+# define GG_CONFIG_HAVE_GNUTLS
+#endif
+
+/* Defined if libgadu was compiled and linked with OpenSSL support. */
+/* OpenSSL cannot be used with libpurple due to licence type. */
+#undef GG_CONFIG_HAVE_OPENSSL
+
+/* Defined if libgadu was compiled and linked with zlib support. */
+#define GG_CONFIG_HAVE_ZLIB
+
+/* Defined if uintX_t types are defined in <stdint.h>. */
+#undef GG_CONFIG_HAVE_STDINT_H
+#ifdef HAVE_STDINT_H
+# define GG_CONFIG_HAVE_STDINT_H
+#endif
+
+/* Defined if uintX_t types are defined in <inttypes.h>. */
+#undef GG_CONFIG_HAVE_INTTYPES_H
+#ifdef HAVE_INTTYPES_H
+# define GG_CONFIG_HAVE_INTTYPES_H
+#endif
+
+/* Defined if uintX_t types are defined in <sys/types.h>. */
+#undef GG_CONFIG_HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
+# define GG_CONFIG_HAVE_SYS_TYPES_H
+#endif
+
+/* Defined if this machine has uint64_t. */
+#define GG_CONFIG_HAVE_UINT64_T
+
+/* Defined if libgadu is GPL compliant (was not linked with OpenSSL or any
+ * other non-GPL compliant library support). */
+#define GG_CONFIG_IS_GPL_COMPLIANT
+
+/* Defined if libgadu uses system defalt trusted CAs. */
+#define GG_CONFIG_SSL_SYSTEM_TRUST
More information about the commits
mailing list