Changeset 69280 in vbox for trunk/src/bldprogs
- Timestamp:
- Oct 25, 2017 10:59:32 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118601
- Location:
- trunk/src/bldprogs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scm.cpp
r69276 r69280 84 84 SCMOPT_LICENSE_OSE_GPL, 85 85 SCMOPT_LICENSE_OSE_DUAL_GPL_CDDL, 86 SCMOPT_LICENSE_OSE_CDDL, 86 87 SCMOPT_LICENSE_LGPL, 87 88 SCMOPT_LICENSE_MIT, … … 204 205 { "--license-ose-gpl", SCMOPT_LICENSE_OSE_GPL, RTGETOPT_REQ_NOTHING }, 205 206 { "--license-ose-dual", SCMOPT_LICENSE_OSE_DUAL_GPL_CDDL, RTGETOPT_REQ_NOTHING }, 207 { "--license-ose-cddl", SCMOPT_LICENSE_OSE_CDDL, RTGETOPT_REQ_NOTHING }, 206 208 { "--license-lgpl", SCMOPT_LICENSE_LGPL, RTGETOPT_REQ_NOTHING }, 207 209 { "--license-mit", SCMOPT_LICENSE_MIT, RTGETOPT_REQ_NOTHING }, … … 622 624 case SCMOPT_LICENSE_OSE_DUAL_GPL_CDDL: 623 625 pSettings->enmUpdateLicense = kScmLicense_OseDualGplCddl; 626 return VINF_SUCCESS; 627 case SCMOPT_LICENSE_OSE_CDDL: 628 pSettings->enmUpdateLicense = kScmLicense_OseCddl; 624 629 return VINF_SUCCESS; 625 630 case SCMOPT_LICENSE_LGPL: … … 1918 1923 " %s,\n" 1919 1924 " %s,\n" 1925 " %s,\n" 1920 1926 " %s\n", 1921 1927 paOpts[i].pszLong, … … 1923 1929 paOpts[i + 2].pszLong, 1924 1930 paOpts[i + 3].pszLong, 1925 paOpts[i + 4].pszLong); 1926 cExtraAdvance = 4; 1931 paOpts[i + 4].pszLong, 1932 paOpts[i + 5].pszLong); 1933 cExtraAdvance = 5; 1927 1934 } 1928 1935 } -
trunk/src/bldprogs/scm.h
r69261 r69280 238 238 kScmLicense_OseGpl, /**< VBox OSE GPL if public. */ 239 239 kScmLicense_OseDualGplCddl, /**< VBox OSE dual GPL & CDDL if public. */ 240 kScmLicense_OseCddl, /**< VBox OSE CDDL if public. */ 240 241 kScmLicense_Lgpl, /**< LGPL if public. */ 241 242 kScmLicense_Mit, /**< MIT if public. */ -
trunk/src/bldprogs/scmrw.cpp
r69274 r69280 48 48 kScmLicenseType_OseGpl, 49 49 kScmLicenseType_OseDualGplCddl, 50 kScmLicenseType_OseCddl, 50 51 kScmLicenseType_VBoxLgpl, 51 52 kScmLicenseType_Mit, … … 145 146 "You may elect to license modified versions of this file under the\n" 146 147 "terms and conditions of either the GPL or the CDDL or both.\n"; 148 149 /** --license-ose-cddl */ 150 static const char g_szVBoxOseCddl[] = 151 "This file is part of VirtualBox Open Source Edition (OSE), as\n" 152 "available from http://www.virtualbox.org. This file is free software;\n" 153 "you can redistribute it and/or modify it under the terms of the Common\n" 154 "Development and Distribution License Version 1.0 (CDDL) only, as it\n" 155 "comes in the \"COPYING.CDDL\" file of the VirtualBox OSE distribution.\n" 156 "VirtualBox OSE is distributed in the hope that it will be useful, but\n" 157 "WITHOUT ANY WARRANTY of any kind.\n"; 147 158 148 159 /** --license-lgpl */ … … 268 279 { kScmLicenseType_OseGpl, kScmLicense_OseGpl, RT_STR_TUPLE(g_szVBoxOseGpl)}, 269 280 { kScmLicenseType_OseDualGplCddl, kScmLicense_OseDualGplCddl, RT_STR_TUPLE(g_szVBoxOseDualGplCddl) }, 281 { kScmLicenseType_OseCddl, kScmLicense_OseCddl, RT_STR_TUPLE(g_szVBoxOseCddl) }, 270 282 { kScmLicenseType_VBoxLgpl, kScmLicense_Lgpl, RT_STR_TUPLE(g_szVBoxLgpl)}, 271 283 { kScmLicenseType_Confidential, kScmLicense_End, RT_STR_TUPLE(g_szOracleConfidential) },
Note:
See TracChangeset
for help on using the changeset viewer.