diff --git a/AUTHORS b/AUTHORS index 1b508afab1a..76951e7eb36 100644 --- a/AUTHORS +++ b/AUTHORS @@ -40,6 +40,7 @@ Ethan Jackson ethan@nicira.com Flavio Leitner fbl@redhat.com FUJITA Tomonori fujita.tomonori@lab.ntt.co.jp Gaetano Catalli gaetano.catalli@gmail.com +Geoffrey Wossum gwossum@acm.org Giuseppe Lettieri g.lettieri@iet.unipi.it Glen Gibb grg@stanford.edu Guolin Yang gyang@nicira.com @@ -83,6 +84,7 @@ Pravin B Shelar pshelar@nicira.com Raju Subramanian rsubramanian@nicira.com Ravi Kerur Ravi.Kerur@telekom.com Reid Price reid@nicira.com +Remko Tronçon git@el-tramo.be Rich Lane rlane@bigswitch.com Rob Hoes rob.hoes@citrix.com Romain Lenglet romain.lenglet@berabera.info @@ -106,6 +108,7 @@ Tyler Coumbes coumbes@gmail.com Valient Gough vgough@pobox.com Vivien Bernet-Rollande vbr@soprive.net Wei Yongjun yjwei@cn.fujitsu.com +William Fulton Yasuhito Takamiya yasuhito@gmail.com Yu Zhiguo yuzg@cn.fujitsu.com ZhengLingyun konghuarukhr@163.com diff --git a/COPYING b/COPYING index 22c9341b8c4..6b28b0e7510 100644 --- a/COPYING +++ b/COPYING @@ -19,6 +19,9 @@ Most files are licensed under the Apache License, Version 2.0: Files under the datapath directory are licensed under the GNU General Public License, version 2. +File build-aux/cccl is licensed under the GNU General Public +License, version 2. + Files under the xenserver directory are licensed on a file-by-file basis. Refer to each file for details. diff --git a/Makefile.am b/Makefile.am index f2d129459b6..3d2165f9f40 100644 --- a/Makefile.am +++ b/Makefile.am @@ -70,6 +70,7 @@ EXTRA_DIST = \ SubmittingPatches \ WHY-OVS \ boot.sh \ + build-aux/cccl \ build-aux/sodepends.pl \ build-aux/soexpand.pl \ $(MAN_FRAGMENTS) \ diff --git a/build-aux/cccl b/build-aux/cccl new file mode 100644 index 00000000000..a00b7f88e35 --- /dev/null +++ b/build-aux/cccl @@ -0,0 +1,201 @@ +#!/bin/sh + +# cccl +# Wrapper around MS's cl.exe and link.exe to make them act more like +# Unix cc and ld +# +# Copyright (C) 2000-2003 Geoffrey Wossum (gwossum@acm.org) +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# + +usage() +{ + cat <