Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: third_party/libevent/autogen.sh

Issue 1531573008: move libevent into base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix shim path Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libevent/android/event-config.h ('k') | third_party/libevent/buffer.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 if [ -x "`which autoreconf 2>/dev/null`" ] ; then
3 exec autoreconf -ivf
4 fi
5
6 LIBTOOLIZE=libtoolize
7 SYSNAME=`uname`
8 if [ "x$SYSNAME" = "xDarwin" ] ; then
9 LIBTOOLIZE=glibtoolize
10 fi
11 aclocal && \
12 autoheader && \
13 $LIBTOOLIZE && \
14 autoconf && \
15 automake --add-missing --copy
OLDNEW
« no previous file with comments | « third_party/libevent/android/event-config.h ('k') | third_party/libevent/buffer.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698