summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac14
-rw-r--r--src/usbmux.c5
2 files changed, 0 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac
index 21b69e3..b277f73 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,20 +18,6 @@ AC_PROG_INSTALL
18 18
19PKG_CHECK_MODULES(libusb, libusb >= 0.1.12) 19PKG_CHECK_MODULES(libusb, libusb >= 0.1.12)
20 20
21# check for options
22AC_ARG_ENABLE([hacks],
23 [AS_HELP_STRING([--disable-hacks],
24 [disable hacks that provide workarounds for certain problems])],
25 [enable_hacks=no],
26 [enable_hacks=yes])
27if test "x$enable_hacks" = xyes; then
28 AC_DEFINE(ENABLE_HACKS, 1, [Define if you want hacks enabled])
29 echo "Note: hacks are enabled."
30else
31 echo "Note: hacks are DISABLED."
32fi
33AM_CONDITIONAL(ENABLE_HACKS, test "x$enable_hacks" = xyes)
34
35# Output files 21# Output files
36 22
37AC_OUTPUT([ 23AC_OUTPUT([
diff --git a/src/usbmux.c b/src/usbmux.c
index 37538da..2157e05 100644
--- a/src/usbmux.c
+++ b/src/usbmux.c
@@ -15,9 +15,6 @@
15 * License along with this library; if not, write to the Free Software 15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */ 17 */
18#ifdef HAVE_CONFIG_H
19#include <config.h>
20#endif
21#include <stdint.h> 18#include <stdint.h>
22#include <stdarg.h> 19#include <stdarg.h>
23#include <stdlib.h> 20#include <stdlib.h>
@@ -848,7 +845,6 @@ int usbmux_send(usbmux_client_t client, const char *data, uint32_t datalen,
848 uint32_t curlen = datalen; 845 uint32_t curlen = datalen;
849 uint32_t packetsize = blocksize; 846 uint32_t packetsize = blocksize;
850 847
851#ifdef ENABLE_HACKS
852 // BEGIN HACK 848 // BEGIN HACK
853 if ((blocksize % 128) == 0) { 849 if ((blocksize % 128) == 0) {
854 int cutoff = 28; 850 int cutoff = 28;
@@ -890,7 +886,6 @@ int usbmux_send(usbmux_client_t client, const char *data, uint32_t datalen,
890 fullsendresult -= sizeof(usbmux_tcp_header); 886 fullsendresult -= sizeof(usbmux_tcp_header);
891 } 887 }
892 // END HACK 888 // END HACK
893#endif
894 889
895 // Set the length 890 // Set the length
896 client->header->length = packetsize; 891 client->header->length = packetsize;